/*
This is an example script for a layer. Click the Execute button to apply and then execute this script. Once executed, a event qualifier is installed onto the layer thus altering the user mouse and keyboard behavior. This is important if you are using controls such as dials, sliders and buttons on a document.
*/

/* Declaration blocks */

@@class() Layer:Object

@@method(public, class) (id)stored;
@@method(public, instance) (void)enableEventQualifier;
@@method(public, instance) (void)disableEventQualifier;

@@end

/* Execution block */

{
id myLayer;

myLayer = [Layer stored];

[myLayer enableEventQualifier];

}
